syms v_c(t)
ode = diff(v_c,t) ==-1000*v_c+10000
ode(t) = 
cond = v_c(0)==-10
cond = 
v_csol = dsolve(ode,cond)
v_csol = 
fplot(v_csol, [0 0.01])